home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / TK-PAGER.ZIP / PAGER.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1996-10-08  |  2KB  |  129 lines

  1. ;------------------------------------------------------------------------------
  2. ;                                                   .ss.
  3. ;                                                   `²²'
  4. ;             .,sS$Ss,,s$  .,sS$$$Ss.  .,sS$Ss,,s$ .ss.  .sSs.
  5. ;           .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
  6. ;           $$$'   .$$$' $$$²Sçsµ²' .$$$'   .$$$'.$$$' .$$$'  `$$b.
  7. ;           $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$'    ;$$$
  8. ;           `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
  9. ;                                    .sS²°$$$²²°"'       d²°'
  10. ;                                  .$$²  .$$'
  11. ;                                  $$$.,d$$'
  12. ;                                  `²S$$S²'
  13. ;------------------------------------------------------------------------------
  14. ; P.P.L.X. 2.OO                          (C)1996 - Lone Runner / AEGiS CoRP'96 
  15. ;------------------------------------------------------------------------------
  16. ; PPE 3.2O (Encryption type I) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     String   STRING001
  20.     Byte     BYTE001
  21.  
  22. ;------------------------------------------------------------------------------
  23.  
  24.     Cls
  25.     PrintLn "           @X01---|---------------------------------------------|---"
  26.     PrintLn "              |         @X03Paging Sysop please wait.           @X01|"
  27.     PrintLn "              | @X06Page Reason@X05: @X08[@X07............................@X08] @X01|"
  28.     PrintLn "           ---|---------------------------------------------|---"
  29.     PrintLn "              |  @X02Progress                                   @X01|"
  30.     PrintLn "           ---|---------------------------------------------|---"
  31.     AnsiPos 31, 3
  32.     InputStr "_", STRING001, 7, 28, Mask_Ascii(), 0
  33.     If (Len(STRING001) == 0) Then
  34.         Cls
  35.         End
  36.     Endif
  37.     If (Upper(ReadLine(PPEPath() + "PAGER.CFG", 2)) == "Y") Then
  38.         FAppend 1, PPEPath() + "PAGER.LOG", 1, 3
  39.         FPutLn 1, U_Name() + Space(30 - Len(U_Name())) + String(Date()) + " " + String(Time()) + " " + STRING001
  40.         FClose 1
  41.     Endif
  42.     PageOn
  43.     AnsiPos 26, 5
  44.     Color 2
  45.     For BYTE001 = 1 To 30
  46.         Print "."
  47.         If (BYTE001 < ReadLine(PPEPath() + "PAGER.CFG", 1) + 1) Sound 400
  48.         If (BYTE001 == ReadLine(PPEPath() + "PAGER.CFG", 1) + 1) Sound 0
  49.         Delay 50
  50.         If (MInkey() <> "") Break
  51.         If (KInkey() <> "") Then
  52.             Sound 0
  53.             Call ReadLine(PPEPath() + "PAGER.CFG", 3)
  54.             End
  55.         Endif
  56.     Next
  57.  
  58. ;------------------------------------------------------------------------------
  59. ;
  60. ; Usage report (before postprocessing)
  61. ;
  62. ; ■ Statements used :
  63. ;
  64. ;    2       End
  65. ;    2       Cls
  66. ;    1       Color 
  67. ;    6       Goto 
  68. ;    2       Let 
  69. ;    1       Print 
  70. ;    6       PrintLn 
  71. ;    7       If 
  72. ;    1       FAppend 
  73. ;    1       FClose 
  74. ;    1       FPutLn 
  75. ;    1       InputStr 
  76. ;    1       Delay 
  77. ;    1       Call 
  78. ;    2       AnsiPos 
  79. ;    3       Sound 
  80. ;    1       PageOn
  81. ;
  82. ;
  83. ; ■ Functions used :
  84. ;
  85. ;    14      +
  86. ;    1       -
  87. ;    3       ==
  88. ;    2       <>
  89. ;    2       <
  90. ;    1       <=
  91. ;    2       >=
  92. ;    4       !
  93. ;    2       &&
  94. ;    1       ||
  95. ;    2       Len(
  96. ;    1       Upper()
  97. ;    1       Space()
  98. ;    1       Date()
  99. ;    1       Time()
  100. ;    2       U_Name()
  101. ;    2       String()
  102. ;    1       Mask_Ascii()
  103. ;    5       PPEPath()
  104. ;    4       ReadLine()
  105. ;    1       KInkey()
  106. ;    1       MInkey()
  107. ;
  108. ;------------------------------------------------------------------------------
  109. ;
  110. ; Analysis flags : C
  111. ;
  112. ; C - Call child PPE ■ 3
  113. ;     This is usually normal, but may be a tricky way to launch some
  114. ;     sysop-only commands.
  115. ;     ■ Search for : CALL
  116. ;
  117. ;------------------------------------------------------------------------------
  118. ;
  119. ; Postprocessing report
  120. ;
  121. ;    1       For/Next
  122. ;    0       While/EndWhile
  123. ;    3       If/Then or If/Then/Else
  124. ;    0       Select Case
  125. ;
  126. ;------------------------------------------------------------------------------
  127. ;                 AEGiS Corp - Break the routines, code against the machines!
  128. ;------------------------------------------------------------------------------
  129.